home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # fixdisk.sh
- # Installs the minisystem onto the given hard disk, if possible
- # Usage: fixdisk <device>
- # Example: fixdisk sd0a
-
- FSCK=/usr/etc/fsck
- GZIP=/usr/bin/gzip
- MOUNT=/usr/etc/mount
- TAR=/usr/bin/gnutar
- MINISYSTEM=/NextCD/CDIS/MiniSystem.gnutar.z
- MOUNTPOINT=/private/tmp/mnta
- REBOOT=/usr/etc/reboot
-
- disk=/dev/${1}
- rdisk=/dev/r${1}
-
- if ${FSCK} $rdisk && ${MOUNT} $disk ${MOUNTPOINT} ; then
- cd ${MOUNTPOINT}
- echo Copying minimal system to disk
- ${GZIP} -d -c ${MINISYSTEM} | ${GNUTAR} xvBpf -
- echo
- else
- echo
- echo Could not mount hard disk. This utility cannot be used to repair your disk.
- echo
- fi
- echo Press Return to restart the computer.
- read foo
- echo Restarting computer. Please wait...
- ${REBOOT}
-